home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / qic02_11.zip / MAKEFILE < prev    next >
Text File  |  1993-04-28  |  384b  |  19 lines

  1. .asm.obj:
  2.         masm /mx /D__TINY__ $*;
  3.  
  4. qic02.obj: qic02.h qic02.c
  5.         tcc -Z -O -c -mt qic02.c
  6.  
  7. qic02.sys: qic02.obj tcdev.obj
  8.         tlink tcdev + qic02,qic02,,c:\tc\lib\cs/m;
  9.         exe2bin qic02.exe qic02.sys
  10.         del qic02.exe
  11.  
  12. mt.com: mtio.h mt.c
  13.         tcc -Z -O -mt mt.c
  14.         exe2bin mt.exe mt.com
  15.         del mt.exe
  16.  
  17. all: mt.com qic02.sys
  18.  
  19.